home *** CD-ROM | disk | FTP | other *** search
- ;******************************************************************************
- ; Ver 13.1, Last Update Jun 07, 1995 *
- ; wwwLIB *
- ; *
- ; This library adds functionality to HLPDK 13.1+ docuemnts that are compiled *
- ; to the WWW HTML target *
- ; *
- ; The following added functionality is added : *
- ; *
- ; Text Attributes for internal pieces of text. (bold, italic) *
- ;******************************************************************************
-
- .ifdef www
-
- ;******************************************************************************
- ; Text Attributes *
- ; *
- ; boldText - Display text in bold, e.g. - ~Text~boldText~ - Text will be in *
- ; bold *
- ; italicText - Display text in italic *
- ; boldItalicText - display text in bold italic *
- ; notice that bold italic currently does not work due to HTML limitation, it *
- ; hopefullt be fixed in a future version of HTML. *
- ;******************************************************************************
-
- .userlink boldText '<b>%t</b>'
- .userlink italicText '<i>%t</i>'
- .userlink boldItalicText '<b><i>%t</i></b>'
- .userlink underlineText '%t'
-
- .userlink lineBreak '<br>'
-
- ;******************************************************************************
- ; Links *
- ; *
- ; graphicLibk, graphicPopup - Use an image to link. *
- ; ftpLink - link using the ftp protocol *
- ; gopherLink - link using the gopher protocol *
- ; mailto - link using the mailto tag *
- ; externalJump - jump to an external file *
- ;******************************************************************************
-
- .userlink graphicLink '<a href=%f2>%t<img src="%g1"></a>'
- .userlink graphicPopup '<a href=%f2>%t<img src="%g1"></a>'
- .userlink ftpLink '<a href=ftp://%1>%t</a>'
- .userlink gopherLink '<a href=gopher://%1>%t</a>'
- .userlink mailto '<a href=mailto:%t>%t</a>'
- .userlink externalJump '<a href="%1">%t</a>'
-
- ;******************************************************************************
- ; special *
- ; horizontalLine displays a horizontal line .. *
- ; specialChar displays a hex value *
- ;******************************************************************************
-
- .userlink horizontalLine '<HR>'
- .userlink specialChar '%t;'
-
- .endif
-
-
-
-
-
-
-